body {
  font-family: "Inter", sans-serif;
  color: #333;
}
.brand-color {
  color: #ed6225;
}
.brand-bg {
  background-color: #ed6225;
}
.press-logo {
  width: 120px;
  height: 40px;
}

.press-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f8fafc;
}

.square-image {
  aspect-ratio: 1;
  width: 100%;
  height: 270px;
}

.landscape-image {
  aspect-ratio: 16/10;
  width: 100%;
  height: 200px;
}

.featured-image {
  transition: transform 0.3s ease;
}

.image-container:hover .featured-image {
  transform: scale(1.05);
}

.section-heading {
  background: linear-gradient(135deg, #ed6225 0%, #f97316 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
}

/* Interested Button */
.interest-button {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  cursor: pointer;
  animation: fastZoomBlink 1.2s infinite;
}

.interest-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  animation-play-state: paused;
}

.interest-button:active {
  transform: translateY(0);
}

.interest-button .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.interest-button:hover .icon {
  transform: scale(1.1);
}

.interest-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.interest-button:hover::before {
  left: 100%;
}

@keyframes fastZoomBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.button-container {
  position: relative;
  display: inline-block;
}

/* Alternative styles - uncomment to try different effects */
/*
        .interest-button {
            animation: colorBlink 1.5s infinite;
        }

        @keyframes colorBlink {
            0%, 100% { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
            50% { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        }
        */

.youtube-preview {
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 20px auto;
  width: 50%;
}

.youtube-preview:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.youtube-thumbnail {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  border: 2px dotted#fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: rgb(255, 0, 0);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px 15px 15px;
  font-size: 14px;
  font-weight: 500;
}

.youtube-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.youtube-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  aspect-ratio: 16/9;
}

.close-button {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 768px) {
  .modal-content {
    width: 95vw;
    height: auto;
  }
}
